home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD School House 10
/
CD School House - Education and Games (10.0) - Wayzata Technology (1995).iso
/
mac
/
DOS
/
MISC
/
SSTUFF30
/
DAILY.BAT
< prev
next >
Wrap
DOS Batch File
|
1994-05-16
|
767b
|
37 lines
echo off
whenisit /w
if errorlevel 7 goto sat
if errorlevel 6 goto fri
if errorlevel 5 goto thu
if errorlevel 4 goto wed
if errorlevel 3 goto tue
if errorlevel 2 goto mon
:sun
echo It's Sunday
rem Place commands here for Sunday execution
goto end
:sat
echo It's Saturday
rem Place commands here for Saturday execution
goto end
:fri
echo It's Friday
rem Place commands here for Friday execution
goto end
:thu
echo It's Thursday
rem Place commands here for Thursday execution
goto end
:wed
echo It's Wednesday
rem Place commands here for Wednesday execution
goto end
:tue
echo It's Tuesday
rem Place commands here for Tuesday execution
goto end
:mon
echo It's Monday
rem Place commands here for Monday execution
goto end
:end